home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / powervww / w.h < prev    next >
C/C++ Source or Header  |  1998-01-05  |  1KB  |  38 lines

  1. //  ____________________________________________________
  2. // |                                                    |
  3. // |  Project:     POWER VIEW IDE                       |
  4. // |  File:        W.H                                  |
  5. // |  Compiler:    WPP386 (10.6)                        |
  6. // |                                                    |
  7. // |  Subject:     Main module header                   |
  8. // |                                                    |
  9. // |  Author:      Emil Dotchevski                      |
  10. // |____________________________________________________|
  11. //
  12. // E-mail: zajo@geocities.com
  13. // URL:    http://www.geocities.com/SiliconValley/Bay/3577
  14.  
  15. #ifndef _W_H_INCLUDED
  16. #define _W_H_INCLUDED
  17.   #define cmCOM_TIMECHECK       0x1017
  18. #endif
  19.  
  20. #ifdef _DECLARE_W_H
  21.   char startup_path[_MAX_PATH]="";
  22.   char program_params[128] = "";
  23.   uint time_check = cmCOM_TIMECHECK;
  24. #else
  25.   extern char startup_path[_MAX_PATH];
  26.   extern char program_params[128];
  27.   extern uint time_check;
  28. #endif
  29.  
  30. char *tmp_fname( char *result, char *fname );
  31. char *exe_fname( char *result, char *path );
  32. char *exe_file( char *result, char *path );
  33. char *obj_file( char *result, char *path );
  34. char *target_file( char *result, char *path );
  35. boolean save_status( void );
  36. void project_close( void );
  37. void init_main_menu( void );
  38.